home *** CD-ROM | disk | FTP | other *** search
/ Cope with Cancer / Cope with Cancer.iso / pc / cope / copecomm.dxr / 00041.ls < prev    next >
Encoding:
Text File  |  1998-11-03  |  364 b   |  16 lines

  1. on mouseDown
  2.   repeat while the mouseDown
  3.     puppetSprite(2, 1)
  4.     set i to the locV of sprite 2
  5.     set the locV of sprite 2 to i - 20
  6.     if the locV of sprite 2 < -950 then
  7.       set the locV of sprite 2 to -950
  8.     else
  9.       if the locV of sprite 2 > 82 then
  10.         set the locV of sprite 2 to 82
  11.       end if
  12.     end if
  13.     updateStage()
  14.   end repeat
  15. end
  16.